Voelcker and Joseph"s test - translation to αραβικά
Diclib.com
Λεξικό ChatGPT
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:     

Μετάφραση και ανάλυση λέξεων από την τεχνητή νοημοσύνη ChatGPT

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

Voelcker and Joseph"s test - translation to αραβικά

Test and test and set; Test and Test-and-set

Voelcker and Joseph's test      
‎ اخْتِبارُ فولكر وجوزيف:اختبار القرمز النيلَجي‎
listerism         
  • website=medhum.med.nyu.edu}}</ref> Examination of the portrait reveals that the assistant is holding the surgical instrument by the blade instead of the handle, delivering germs directly into the wound. The assistants have dirt on their hands, and a family member is present at the operation, bringing more germs into the operation
  • Poster announcing the Joseph Lister lecturers at High School Yards
  • Louis Pasteur in his laboratory
  • surgical dress]], the use of surgical drapes over the body is predominant and a nurse is present as it is an operation on a woman. Lister work elicited a worldwide revolution in surgery in less than 25 years.
  • Joseph Lister 1860 by [[Thomas Annan]]
  • Joseph Lister acclaims Louis Pasteur at Pasteur's Jubilee, Paris, 1892. Photograph after a painting by Jean-André Rixens
  • Lister's carbolic steam spray apparatus, [[Hunterian Museum]], Glasgow
  • Lister spraying phenol over patient, 1882
  • Micro-pipette used by Lister that dispensed a bacterial
solution diluted to contain an average of “rather less than one bacterium” per drop
  • p=134}}
  • antiseptic surgical]] methods followed the publishing of Lister's ''[[Antiseptic Principle of the Practice of Surgery]]'' in 1867
BRITISH SURGEON AND ANTISEPTIC PIONEER (1827-1912)
Baron Lister; Lister, Joseph; Joseph, Baron Lister, of Lyme Regis Lister; 1st Baron Lister; Joseph Lister, 1st Baron Lister of Lyme Regis; Lister, Joseph, 1st Baron Lister; Sir Joseph Lister; Lister baronets; Lord Lister; Lister (scientist); Joseph Baron Lister; Joseph Lister, Baron Lister; Lister Baronets; Listerian; Josef Lister; Joseph Lister, 1st Baron Lister; Listerism
اللَّسْتَرَة (التَّعْقيمُ والجِراحَةُ المُعَقَّمَة)
listerism         
  • website=medhum.med.nyu.edu}}</ref> Examination of the portrait reveals that the assistant is holding the surgical instrument by the blade instead of the handle, delivering germs directly into the wound. The assistants have dirt on their hands, and a family member is present at the operation, bringing more germs into the operation
  • Poster announcing the Joseph Lister lecturers at High School Yards
  • Louis Pasteur in his laboratory
  • surgical dress]], the use of surgical drapes over the body is predominant and a nurse is present as it is an operation on a woman. Lister work elicited a worldwide revolution in surgery in less than 25 years.
  • Joseph Lister 1860 by [[Thomas Annan]]
  • Joseph Lister acclaims Louis Pasteur at Pasteur's Jubilee, Paris, 1892. Photograph after a painting by Jean-André Rixens
  • Lister's carbolic steam spray apparatus, [[Hunterian Museum]], Glasgow
  • Lister spraying phenol over patient, 1882
  • Micro-pipette used by Lister that dispensed a bacterial
solution diluted to contain an average of “rather less than one bacterium” per drop
  • p=134}}
  • antiseptic surgical]] methods followed the publishing of Lister's ''[[Antiseptic Principle of the Practice of Surgery]]'' in 1867
BRITISH SURGEON AND ANTISEPTIC PIONEER (1827-1912)
Baron Lister; Lister, Joseph; Joseph, Baron Lister, of Lyme Regis Lister; 1st Baron Lister; Joseph Lister, 1st Baron Lister of Lyme Regis; Lister, Joseph, 1st Baron Lister; Sir Joseph Lister; Lister baronets; Lord Lister; Lister (scientist); Joseph Baron Lister; Joseph Lister, Baron Lister; Lister Baronets; Listerian; Josef Lister; Joseph Lister, 1st Baron Lister; Listerism
‎ اللَّسْتَرَة:التَّعْقيمُ والجِراحَةُ المُعَقَّمَة‎

Ορισμός

test case
(test cases)
A test case is a legal case which becomes an example for deciding other similar cases.
N-COUNT

Βικιπαίδεια

Test and test-and-set

In computer architecture, the test-and-set CPU instruction (or instruction sequence) is designed to implement mutual exclusion in multiprocessor environments. Although a correct lock can be implemented with test-and-set, the test and test-and-set optimization lowers resource contention caused by bus locking, especially cache coherency protocol overhead on contended locks.

Given a lock:

boolean locked := false // shared lock variable

the entry protocol is:

procedure EnterCritical() {
  do {
    while ( locked == true )
         skip // spin using normal instructions until the lock is free
  } while ( TestAndSet(locked) == true ) // attempt actual atomic locking using the test-and-set instruction
}

and the exit protocol is:

procedure ExitCritical() {
  locked := false
}

The difference to the simple test-and-set protocol is the additional spin-loop (the test in test and test-and-set) at the start of the entry protocol, which utilizes ordinary load instructions. The load in this loop executes with less overhead compared to an atomic operation (resp. a load-exclusive instruction). E.g., on a system utilizing the MESI cache coherency protocol, the cache line being loaded is moved to the Shared state, whereas a test-and-set instruction or a load-exclusive instruction moves it into the Exclusive state.

This is particularly advantageous if multiple processors are contending for the same lock: whereas an atomic instruction or load-exclusive instruction requires a coherency-protocol transaction to give that processor exclusive access to the cache line (causing that line to ping-pong between the involved processors), ordinary loads on a line in Shared state require no protocol transactions at all: processors spinning in the inner loop operate purely locally.

Cache-coherency protocol transactions are used only in the outer loop, after the initial check has ascertained that they have a reasonable likelihood of success.

If the programming language used supports short-circuit evaluation, the entry protocol could be implemented as:

 procedure EnterCritical() {
   while ( locked == true or TestAndSet(locked) == true )
     skip // spin until locked
 }